home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / rexx / openmailbox.avm < prev    next >
Text File  |  1995-03-09  |  417b  |  15 lines

  1. /* */
  2. parse arg mailbox special .
  3.  
  4. if special = 1 | special = 0 then
  5.     address command 'run >nil: <nil: avm:logview' mailbox
  6. else if special = 2 then
  7.     address command 'run >nil: <nil: avm:scheduler' mailbox
  8. else if special = 3 then
  9.         if upper(mailbox) = 'OUTGOING' then
  10.         address command 'run >nil: <nil: avm:scheduler' mailbox
  11.     else
  12.         address command 'run >nil: <nil: avm:scheduler' mailbox '-noschedule'
  13.  
  14. exit
  15.